All Packages  Class Hierarchy  This Package  Previous  Next  Index

Class com.apple.alpha.app.ImageCell

java.lang.Object
   |
   +----com.apple.alpha.core.NativeObject
           |
           +----com.apple.alpha.app.Cell
                   |
                   +----com.apple.alpha.app.ImageCell

public class ImageCell
extends Cell
implements Coding
This class wraps the Objective-C class NSImageCell.


Variable Index

 o ImageAlignBottom
 o ImageAlignBottomLeft
 o ImageAlignBottomRight
 o ImageAlignCenter
 o ImageAlignLeft
 o ImageAlignRight
 o ImageAlignTop
 o ImageAlignTopLeft
 o ImageAlignTopRight
 o ImageFrameButton
 o ImageFrameGrayBezel
 o ImageFrameGroove
 o ImageFrameNone
 o ImageFramePhoto
 o ScaleNone
 o ScaleProportionally
 o ScaleToFit

Constructor Index

 o ImageCell()
This default constructor is equivalent to Objective-C's [[NSImageCell alloc] init].
 o ImageCell(boolean, int)
Protected constructor used by the bridge to wrap an Objective-C object.
 o ImageCell(Coder)
This constructor has the same effect as calling - initWithCoder: on a newly allocated object.

Method Index

 o encodeWithCoder(Coder)
A wrapper for the - encodeWithCoder: Objective-C instance method defined by the Coding interface (known as the NSCoding Objective-C protocol).
 o imageAlignment()
A wrapper for the - imageAlignment Objective-C instance method.
 o imageFrameStyle()
A wrapper for the - imageFrameStyle Objective-C instance method.
 o imageScaling()
A wrapper for the - imageScaling Objective-C instance method.
 o setImageAlignment(int)
A wrapper for the - setImageAlignment: Objective-C instance method.
 o setImageFrameStyle(int)
A wrapper for the - setImageFrameStyle: Objective-C instance method.
 o setImageScaling(int)
A wrapper for the - setImageScaling: Objective-C instance method.

Variables

 o ScaleProportionally
 public static final int ScaleProportionally
 o ScaleToFit
 public static final int ScaleToFit
 o ScaleNone
 public static final int ScaleNone
 o ImageAlignCenter
 public static final int ImageAlignCenter
 o ImageAlignTop
 public static final int ImageAlignTop
 o ImageAlignTopLeft
 public static final int ImageAlignTopLeft
 o ImageAlignTopRight
 public static final int ImageAlignTopRight
 o ImageAlignLeft
 public static final int ImageAlignLeft
 o ImageAlignBottom
 public static final int ImageAlignBottom
 o ImageAlignBottomLeft
 public static final int ImageAlignBottomLeft
 o ImageAlignBottomRight
 public static final int ImageAlignBottomRight
 o ImageAlignRight
 public static final int ImageAlignRight
 o ImageFrameNone
 public static final int ImageFrameNone
 o ImageFramePhoto
 public static final int ImageFramePhoto
 o ImageFrameGrayBezel
 public static final int ImageFrameGrayBezel
 o ImageFrameGroove
 public static final int ImageFrameGroove
 o ImageFrameButton
 public static final int ImageFrameButton

Constructors

 o ImageCell
 protected ImageCell(boolean shouldAllocate,
                     int objcObject)
Protected constructor used by the bridge to wrap an Objective-C object. It should never be invoked directly.

 o ImageCell
 public ImageCell()
This default constructor is equivalent to Objective-C's [[NSImageCell alloc] init].

 o ImageCell
 public ImageCell(Coder aDecoder)
This constructor has the same effect as calling - initWithCoder: on a newly allocated object.

Methods

 o imageAlignment
 public native int imageAlignment()
A wrapper for the - imageAlignment Objective-C instance method.

 o setImageAlignment
 public native void setImageAlignment(int newAlign)
A wrapper for the - setImageAlignment: Objective-C instance method.

 o imageScaling
 public native int imageScaling()
A wrapper for the - imageScaling Objective-C instance method.

 o setImageScaling
 public native void setImageScaling(int newScaling)
A wrapper for the - setImageScaling: Objective-C instance method.

 o imageFrameStyle
 public native int imageFrameStyle()
A wrapper for the - imageFrameStyle Objective-C instance method.

 o setImageFrameStyle
 public native void setImageFrameStyle(int newStyle)
A wrapper for the - setImageFrameStyle: Objective-C instance method.

 o encodeWithCoder
 public native void encodeWithCoder(Coder aCoder)
A wrapper for the - encodeWithCoder: Objective-C instance method defined by the Coding interface (known as the NSCoding Objective-C protocol).

Overrides:
encodeWithCoder in class Cell

All Packages  Class Hierarchy  This Package  Previous  Next  Index